BlockedSetCookieWithReason

data class BlockedSetCookieWithReason(blockedReasons: List<SetCookieBlockedReason>, cookieLine: String, cookie: Cookie?)

A cookie which was not stored from a response with the corresponding reason.

Constructors

BlockedSetCookieWithReason
Link copied to clipboard
fun BlockedSetCookieWithReason(blockedReasons: List<SetCookieBlockedReason>, cookieLine: String, cookie: Cookie? = null)

Properties

blockedReasons
Link copied to clipboard
val blockedReasons: List<SetCookieBlockedReason>
The reason(s) this cookie was blocked.
cookie
Link copied to clipboard
val cookie: Cookie? = null
The cookie object which represents the cookie which was not stored.
cookieLine
Link copied to clipboard
val cookieLine: String
The string representing this individual cookie as it would appear in the header.

Sources

jvm source
Link copied to clipboard